home *** CD-ROM | disk | FTP | other *** search
- ******************************************************************
- * COPYRIGHT (C) 1986 by Donald Krantz and James Stanley
- * - Note: This is a real, live, actual, registered copyright,
- * and should be treated as such. This source code is from
- * the book "68000 Assembly Language", Krantz and Stanley,
- * Addison-Wesley Publishing Company, Reading, MA, 1986.
- *
- * Permission granted by the authors for non-commercial use
- * in programs released to the public domain, as long as this
- * copyright notice remains attached and visible.
- *
- *****************************************************************
- * Editor error messages
-
- xdef errors
-
- errors: dc.l err_0,err_1,err_2,err_3,err_4,err_5,err_6
- dc.l err_7,err_8,err_9,err_10,err_11,err_12
-
- err_0: dc.b 0
- err_1: dc.b 'Unrecognized Character',0
- err_2: dc.b 'No More Room',0
- err_3: dc.b 'File write error, file not written',0
- err_4: dc.b 'Block not marked.',0
- err_5: dc.b 'File exceeds available memory',0
- err_6: dc.b 'File not found.',0
- err_7: dc.b 'Block Start Marker not set.',0
- err_8: dc.b 'Block End Marker not set.',0
- err_9: dc.b 'Block End Marker preceeds Block Start Marker.',0
- err_10: dc.b 'Block is too large to fit.',0
- err_11: dc.b 'Paste Buffer is empty.',0
- err_12: dc.b 'Search string not found.',0
- dc.w 0
-
- end